home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000160_news@columbia.edu_Tue Aug 15 22:50:34 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05291
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 15 Aug 1995 18:50:38 -0400
  3. Received: by apakabar.cc.columbia.edu id AA11994
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 15 Aug 1995 18:50:37 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Need init string help
  9. Date: 15 Aug 1995 22:50:34 GMT
  10. Organization: Columbia University
  11. Lines: 48
  12. Message-Id: <40r8bq$bmo@apakabar.cc.columbia.edu>
  13. References: <40r1jv$ltn@netnews.upenn.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <40r1jv$ltn@netnews.upenn.edu>,
  18. Andrew Rieger <riegera@rider.wharton.upenn.edu> wrote:
  19. >I don't really know kermit, but I need to support a developer who
  20. >knows even less than I do. :)  He is using a kermit script to dial
  21. >into a modem pool.  The problem is that the modems are sometimes
  22. >in a upset state and need to be reset before dialing out.  I assumed
  23. >that just doing an atz before dialing would be best.  The c-kermit
  24. >manual seemed to suggest that I should modify the dial init-string.
  25. >I have tried to do this, but I cannot seem to see what it is before
  26. >I initialize it, so I do not know how to just add an atz at the
  27. >beginning.  The modem type is V42-telebit.  Any suggestions as to
  28. >how to solve this problem, or a better MTFR would be appreciated.
  29. >
  30. To paraphrase Lyndon Johnson, "Son, you've got the only manual there
  31. is".  There is some additional info about Telebits in the ckcker.bwr.
  32. Well, a lot...
  33.  
  34. But really, I think all you need to do is:
  35.  
  36. C-Kermit>set modem v42-telebit 
  37. C-Kermit>sho dial
  38.  Modem: v42-telebit, speed: 38400
  39.  Dial directory: (none)
  40.  Dial hangup: on, dial modem-hangup: on
  41.  Dial kermit-spoof: off, dial display: off
  42.  Dial speed-matching: on, dial mnp-enable: off
  43.  Dial init-string: \{17}AAAAATQ0X1S12=50 S2=43 I\{13}  <---
  44.  Dial dial-command: ATD%s\{13}
  45.  Dial prefix: (none)
  46.  Dial timeout: 0 (auto), Redial number: (none)
  47.  Carrier: auto
  48. C-Kermit>exit
  49.  
  50. There it is.  But really, it turns out that C-Kermit 5A(190) and
  51. earlier support Telebits in a rather unnecessarily convoluted way,
  52. the upshot of which is that if you change the init string, you
  53. also wind up preventing some other important stuff from happening.
  54.  
  55. In the forthcoming release, 5A(192), matters will be a lot
  56. simpler.  But in the meantime, why not just do this:
  57.  
  58.   set carrier off
  59.   output ATZ\13
  60.   set carrier auto
  61.  
  62. and then DIAL.
  63.  
  64. - Frank